.clean-footer {
  background-color: #fdf5ec;
  color: #2d2d2d;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-left {
  flex: 1 1 300px;
}

.brand-name {
  font-size: 24px;
  color: #a24a00;
}

.brand-name span {
  color: #3b1c0f;
}

.tagline {
  font-style: italic;
  font-size: 14px;
  margin-top: 5px;
}

.desc {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #2e1c0d;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #a24a00;
}

.footer-right {
  flex: 1 1 300px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-links,
.footer-contact {
  flex: 1 1 150px;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #000;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #2d2d2d;
}

.footer-links ul li a:hover {
  color: #a24a00;
}

.footer-contact ul li i {
  margin-right: 10px;
  color: #a24a00;
}

.footer-bottom-strip {
  border-top: 1px solid #ddd;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.policy-links a {
  margin-left: 15px;
  text-decoration: none;
  color: #2d2d2d;
}

.policy-links a:hover {
  color: #a24a00;
}

@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
  }

  .footer-right {
    flex-direction: column;
  }

  .footer-bottom-strip {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .policy-links a {
    margin-left: 0;
    margin-right: 10px;
  }
}

/*orange card start*/
.specialities-section {
  padding: 60px 20px;
  /*background-color: #fff7e3;*/
  background-color:white;
  text-align: center;
}

.specialities-heading h2 {
  font-size: 36px;
  color: #e58b00;
  font-weight: bold;
  margin-bottom: 10px;
}

.specialities-heading p {
  max-width: 600px;
  margin: 0 auto 15px;
  font-size: 16px;
  color: #333;
}

.enroll-btn {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  color: #3b1c0f;
  text-decoration: none;
  transition: 0.3s;
}

.enroll-btn:hover {
  color: #e58b00;
}

.specialities-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.speciality-card {
  background-color: #fff;
  border: 2px solid #f0b86e;
  border-radius: 20px;
  width: 250px;
  padding: 25px 20px;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.speciality-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

.speciality-card h3 {
  font-size: 16px;
  color: #2d2d2d;
  margin-bottom: 10px;
}

.speciality-card p {
  font-size: 14px;
  color: #555;
  min-height: 60px;
}

/* Hover Effect */
.speciality-card:hover {
  background-color: #f8931f;
  color: white;
  transform: translateY(-5px);
}

.speciality-card:hover h3,
.speciality-card:hover p {
  color: white;
}

.speciality-card:hover a {
  color: white;
}

/*orange card end*/

/*=============card============== */
.gk-feedbacks {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}
/* Feedback Card */
.gk-feedback-card {
  background-color: #ffffff;
  border: 1.5px solid #ff8800;
  padding: 20px;
  border-radius: 10px;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.gk-feedback-card:hover {
  background-color: #f8931f;
  color: white;
  border: 2px solid #f8931f;
  transform: translateY(-5px);
}


.gk-feedbacks-heading h2 {
  font-size: 36px;
  color: #f48a00;
  font-weight: bold;
}

.gk-feedbacks-heading p {
  max-width: 800px;
  margin: 10px auto 30px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.gk-feedbacks-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.gk-feedback-card {
  border: 1px solid #f4b06f;
  border-radius: 15px;
  padding: 25px 20px;
  width: 300px;
  background-color: #fff;
  text-align: left;
  transition: 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.gk-feedback-card.gk-active-card {
  border: 2px solid #00b87c;
  background-color: #f6fff8;
}

.gk-stars {
  color: #ffa500;
  font-size: 20px;
  margin-bottom: 10px;
}

.gk-feedback-text {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
}

.gk-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gk-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.gk-user h4 {
  font-size: 16px;
  color: #3b1c0f;
  margin: 0;
  font-weight: bold;
}

.gk-user span {
  font-size: 13px;
  color: #666;
}

/* Navigation Arrows */
.gk-nav-buttons {
  margin-top: 30px;
}

.gk-arrow-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid #000;
  border-radius: 50%;
  background: #fff;
  font-size: 18px;
  margin: 0 10px;
  cursor: pointer;
  transition: 0.3s;
}

.gk-arrow-filled {
  background-color: #ff8800;
  color: white;
  border-color: #ff8800;
}
/* Feedback Navigation Buttons */
.gk-nav-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.gk-arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #ff8800;
  background-color: #fff;
  color: #ff8800;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gk-arrow-btn:hover {
  background-color: #ff8800;
  color: #fff;
  transform: scale(1.05);
}

.gk-next-btn {
  background-color: #ff8800;
  color: white;
}

.gk-next-btn:hover {
  background-color: #e57300;
  border-color: #e57300;
}

.gk-prev-btn:hover {
  background-color: #fff3e0;
}


/*---------------------icon---------------*/
.nds-process {
  padding: 100px 20px;
  background-color: #fdfdfd;
}

.nds-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
}

.nds-step {
  background: #fff;
  border-radius: 20px;
  padding: 70px 25px 40px;
  width: 30%;
  min-width: 280px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.07);
  position: relative;
}

.nds-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: -100px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nds-icon img {
  width: 50px;
  height: 50px;
}

.nds-badge {
  background-color: #f0f0f0;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 15px;
  display: inline-block;
  margin-bottom: 15px;
}

.nds-badge span {
  font-weight: normal;
  margin-left: 6px;
}

.nds-text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.nds-sparkle {
  width: 40px;
  height: 40px;
  background-color: #f5f5f5;
  border-radius: 50%;
  margin: 25px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: orange;
  position: relative;
  z-index: 2;
}

.nds-curve {
  position: absolute;
  width: 100px;
  height: 200px;
  bottom: -200px;
  z-index: 0;
}

.curve-right {
  right: -70px;
}

.curve-left {
  left: -70px;
}


/* ------------------------black card--------------------*/
.gk-cert-section {
  background-color: #111;
  padding: 60px 20px;
  color: white;
  font-family: Arial, sans-serif;
}

.gk-cert-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
  align-items: flex-start;
}

/* Left: Certificate Image */
.gk-cert-left {
  flex: 1 1 40%;
  text-align: center;
}

.gk-cert-img {
  max-width: 100%;
  max-height:400px;
  border-radius: 10px;
  border: 1px solid #555;
  margin:10px;
}

/* Right: 2x2 Grid */
.gk-cert-right {
  flex: 1 1 55%;
}

.gk-feature-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.gk-feature-card {
  background: transparent;
  padding: 10px;
  text-align: left;
}

.gk-feature-icon {
  font-size: 30px;
  color: orange;
  margin-bottom: 10px;
}

.gk-feature-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.gk-feature-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}


/*--------------mobile-----------------*/

/*add to card*/
/* ---------- PRODUCTS SECTION ---------- */

.side-image-courses-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.side-image-courses-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.side-course-card {
  display: flex;
  width: calc(50% - 15px);
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.3s ease;
}

.side-course-card:hover {
  transform: translateY(-5px);
}

.side-course-image {
  width: 180px;
  object-fit: contain;
  padding: 15px;
  background-color: #fff;
}

.side-course-content {
  padding: 20px;
  flex: 1;
}

.side-course-title {
  font-size: 20px;
  color: #f28a00;
  margin-bottom: 8px;
  font-weight: 700;
}

.side-course-desc {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}

.side-course-support,
.side-course-rating {
  font-size: 14px;
  color: #444;
  margin-bottom: 4px;
}

.side-course-price-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.side-course-price {
  color: #e46c00;
  font-weight: bold;
  font-size: 16px;
}

.side-course-old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 14px;
}

.side-course-buttons {
  display: flex;
  gap: 10px;
}

.side-enroll-btn,
.side-view-btn {
  padding: 8px 15px;
  border: none;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
}

.side-enroll-btn {
  background-color: #ff7c00;
  color: white;
}

.side-view-btn {
  border: 1px solid #555;
  background: white;
  color: #000;
}

@media (max-width: 768px) {
  .side-course-card {
    flex-direction: column;
    width: 100%;
  }

  .side-course-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
  }
}

/* === Instructor & Education Section === */
.instructor-education-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.instructor-education-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.edu-card {
  flex: 1 1 300px;
  max-width: 500px;
  background-color: #ffe5c3; /* default color */
  border-radius: 15px;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.instructor-card {
  background-color: #ffe5c3;
}

.education-card {
  background-color: #ffeea4;
}

.edu-image {
  width: 120px;
  height: auto;
}

.edu-text h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #333;
}

.edu-text p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #444;
}

.edu-btn {
  padding: 10px 20px;
  background-color: #3b0a0a;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.edu-btn:hover {
  background-color: #5c1010;
}

.explore-courses-section {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.explore-courses-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.explore-text-left {
  flex: 1 1 45%;
}

.explore-heading {
  font-size:45px;
  font-weight: 700;
  color: #f39200;
  line-height: 1.3;
}

.explore-text-right {
  flex: 1 1 45%;
}

.explore-description {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.explore-btn {
  padding: 12px 24px;
  font-size: 16px;
  background-color: #f39200;
  color: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 3px 0 #8c4600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background-color: #da7d00;
  box-shadow: 0 2px 0 #733700;
}

/*mobile start*/
/* ==== Main Section ==== */
.nds-app-section {
  background-color: #f7931e; /* Orange */
  padding: 60px 20px;
  color: #000;
  font-family: 'Arial', sans-serif;
}

/* ==== Container Layout ==== */
.nds-app-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* ==== Left Side: Text and Buttons ==== */
.nds-app-left {
  flex: 1 1 50%;
}

.nds-app-left h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.nds-app-left p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.nds-app-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nds-app-store-icon {
  height: 55px;
  max-width: 160px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.nds-app-store-icon:hover {
  transform: scale(1.05);
}

/* ==== Right Side: Mobile Image ==== */
.nds-app-right {
  flex: 1 1 45%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.nds-phone-back {
  max-width: 100%;
  height: auto;
  width: 350px;
  z-index: 1;
}

/* ==== Responsive Design ==== */
@media screen and (max-width: 992px) {
  .nds-app-left h2 {
    font-size: 36px;
  }

  .nds-app-left p {
    font-size: 16px;
  }

  .nds-phone-back {
    width: 280px;
  }
}

@media screen and (max-width: 768px) {
  .nds-app-container {
    flex-direction: column;
    text-align: center;
  }

  .nds-app-left,
  .nds-app-right {
    flex: 1 1 100%;
  }

  .nds-app-buttons {
    justify-content: center;
  }

  .nds-phone-back {
    width: 250px;
    margin-top: 20px;
  }
}

/*mobile end*/

/*about us*/
.about-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Arial', sans-serif;
}

.about-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.about-box {
  flex: 1 1 30%;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.about-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.about-box h3 {
  color: #ff7a00;
  font-size: 20px;
  margin-bottom: 15px;
}

.about-box p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* ✅ Responsive: Stack vertically on small screens */
@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-box {
    width: 100%;
    max-width: 400px;
  }
}



/* === Gallery Section === */
.gallery-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.gallery-heading h2 {
  color: #ff7a00;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.gallery-heading p {
  font-size: 16px;
  color: #333;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* === Image Box === */
.gallery-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.3s ease;
}

/* === Hover Effects === */
.gallery-box:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

/* Overlay background */
.gallery-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-box:hover::before {
  opacity: 1;
}

/* Overlay text */
.overlay-text {
  position: absolute;
  bottom: 12px;
  left: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);
}

.gallery-box:hover .overlay-text {
  opacity: 1;
  transform: translateY(0);
}

/* === Mobile Responsive === */
@media screen and (max-width: 600px) {
  .gallery-heading h2 {
    font-size: 24px;
  }

  .gallery-heading p {
    font-size: 14px;
  }

  .gallery-section {
    padding: 40px 10px;
  }
}

/*
*
**
***  --------------------------- Silver Package-----------------------------
****
*****
*/
/* === SILVER PACKAGE SECTION STYLING === */
/* Main Container */
.certificate-row-section {
  padding: 50px 20px;
  background-color: #ffffff;
}

.certificate-row-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

/* Columns */
.certificate-column {
  flex: 1 1 50%;
  box-sizing: border-box;
}

/* Image Column */
.certificate-image-column {
  text-align: center;
}

.certificate-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border: 2px solid #ccc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Text Column */
.certificate-text-column {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.certificate-title {
  color: #f7941d;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.certificate-steps {
  list-style-type: disc;
  padding-left: 20px;
  line-height: 1.8;
}

.certificate-steps li {
  margin-bottom: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .certificate-row-container {
    flex-direction: column;
    gap: 40px;
  }

  .certificate-img {
    max-width: 90%;
    border-width: 1px;
  }

  .certificate-title {
    text-align: center;
    font-size: 22px;
  }

  .certificate-steps {
    padding-left: 15px;
    font-size: 15px;
  }
}

/*===============================================*/
/* DESKTOP VIEW */
.custom-faq-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    /*background-color: #fff;*/
}

.custom-faq-container h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c0000;
}

.custom-faq-block {
    border: 1px solid #ff8c1a;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s ease;
}

.custom-faq-toggle {
    width: 100%;
    background-color: #fff;
    color: #000;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-faq-content {
    display: none;
    padding: 20px;
    background-color: #ff8c1a;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

.custom-faq-block.active .custom-faq-content {
    display: block;
}

.custom-faq-block.active .custom-faq-toggle {
    background-color: #ff8c1a;
    color: white;
}

.custom-faq-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}










